home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Add-Ons / CodeWarrior / DASM 2.0 / DASM Src.sit / included.h / included.h
Encoding:
C/C++ Source or Header  |  1997-04-16  |  519 b   |  24 lines  |  [TEXT/CWIE]

  1. //=============================================================================
  2. // Both PC and Mac include this file (on the PC it's the main include file!)
  3.  
  4. #include <stdio.h>
  5. #include <ctype.h>
  6. #include <string.h>
  7.  
  8. //#define DEBUG
  9.  
  10. typedef unsigned long ULONG;
  11. typedef unsigned short UWORD;
  12. typedef unsigned char UBYTE;
  13.  
  14. // Include all of our files
  15.  
  16. #include "hash.h"
  17. #include "util.h"
  18. #include "DASMPref.h"
  19. #include "express.h"
  20. #include "assemble.h"
  21. #include "pseudos.h"
  22. #include "globals.h"
  23.  
  24.